fix: restore thulp-logo.svg deleted by vps-git-sync#17
Merged
Conversation
The thulp logo was referenced in README.md line 2 but 404'd on GitHub because commit 1ad5593 (vps-git-sync, 2026-03-23) auto-deleted 6 files: - docs/static/img/thulp-logo.svg (SOURCE — should NEVER have been deleted) - docs/public/404.html (Zola build output — ok to delete) - docs/public/img/thulp-logo.svg (Zola build output — ok to delete) - docs/public/index.html (Zola build output — ok to delete) - docs/public/robots.txt (Zola build output — ok to delete) - docs/public/sitemap.xml (Zola build output — ok to delete) Root cause: vps-git-sync blindly commits local filesystem state to git, including deletions. Someone cleaned docs/public/ and accidentally also wiped docs/static/img/ on VPS local, and the sync script dutifully pushed the removal of the logo source along with the build output. Fix: 1. Restore docs/static/img/thulp-logo.svg from git history (1ad5593^) 2. Add docs/public/ to .gitignore so the build output can't be re-tracked in the future (and its deletion can't be re-committed) This doesn't prevent the underlying vps-git-sync footgun, but it does protect this specific incident class from recurring. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Restores `docs/static/img/thulp-logo.svg` which was 404ing on GitHub (README references it on line 2). Also adds `docs/public/` to `.gitignore` to prevent the Zola build output from being re-tracked.
Root cause
Commit `1ad5593` (vps-git-sync, 2026-03-23) auto-deleted 6 files when someone cleaned the filesystem. 5 of them were Zola build output in `docs/public/` (fine to delete), but one was the source file `docs/static/img/thulp-logo.svg`. vps-git-sync dutifully pushed the deletion.
Test plan
🤖 Generated with Claude Code